home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Topik / Topik - Disk 16 - KnowAboutIt (19xx)(Topik Public Domain)(PD)[WB].zip / Topik - Disk 16 - KnowAboutIt (19xx)(Topik Public Domain)(PD)[WB].adf / MicroRayDbw / Make.version < prev    next >
Text File  |  1988-12-11  |  398b  |  17 lines

  1. #
  2. # Places the comment at the top of README into all of the source files
  3. #
  4. sed -n '1,/\/$/p' README > version.txt
  5. foreach a ( $* )
  6.     echo "$a"
  7.     cp  version.txt      $a.new
  8.     sed '1,/\/$/d' $a >> $a.new
  9.     mv  $a.new $a
  10.     end
  11. echo "Makefile"
  12. sed '1,$s/^/#/' version.txt >  Makefile.new
  13. sed '1,/^[^#]/d' Makefile   >> Makefile.new
  14. mv  Makefile.new Makefile
  15. rm -f version.txt
  16. touch *.o uray
  17.